home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / diskfont / oterrors.h < prev   
C/C++ Source or Header  |  1996-09-10  |  1KB  |  33 lines

  1. #ifndef  DISKFONT_OTERRORS_H
  2. #define  DISKFONT_OTERRORS_H 1
  3. /*
  4. ** oterrors.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/02/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. /* PRELIMINARY */
  17. #define  OTERR_Failure      -1  /* catch-all for error */
  18. #define  OTERR_Success      0   /* no error */
  19. #define  OTERR_BadTag       1   /* inappropriate tag for function */
  20. #define  OTERR_UnknownTag   2   /* unknown tag for function */
  21. #define  OTERR_BadData      3   /* catch-all for bad tag data */
  22. #define  OTERR_NoMemory     4   /* insufficient memory for operation */
  23. #define  OTERR_NoFace       5   /* no typeface currently specified */
  24. #define  OTERR_BadFace      6   /* typeface specification problem */
  25. #define  OTERR_NoGlyph      7   /* no glyph specified */
  26. #define  OTERR_BadGlyph     8   /* bad glyph code or glyph range */
  27. #define  OTERR_NoShear      9   /* shear only partially specified */
  28. #define  OTERR_NoRotate     10  /* rotate only partially specified */
  29. #define  OTERR_TooSmall     11  /* typeface metrics yield tiny glyphs */
  30. #define  OTERR_UnknownGlyph 12  /* glyph not known by engine */
  31.  
  32. #endif   /* DISKFONT_OTERRORS_H */
  33.